From: Richard M. Stallman Date: Wed, 16 Oct 2002 15:56:15 +0000 (+0000) Subject: (Fcopy_file): Fix backward test of KEEP_TIME. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~30158 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=2d04c187c54b31508ca9110f15d089f26220b975;p=emacs.git (Fcopy_file): Fix backward test of KEEP_TIME. --- diff --git a/src/fileio.c b/src/fileio.c index 2e83159ef86..41504f9882b 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -2417,7 +2417,7 @@ A prefix arg makes KEEP-TIME non-nil. */) SDATA (encoded_newname), FALSE)) report_file_error ("Copying file", Fcons (file, Fcons (newname, Qnil))); - else if (NILP (keep_time)) + else if (!NILP (keep_time)) { EMACS_TIME now; DWORD attributes;